Is there any way to "bringToFront" "Maximized" module window without "Restoring" its size? bringToFront(current Module)
SystemAdmin - Wed Nov 04 10:31:53 EST 2009 |
Re: "bringToFront" maximized window
Hah! I found one:
void bringModuleToFront (Module m) {
current = m // may not be needed
load (moduleVersion m, true)
}
|
Re: "bringToFront" maximized window Mathias Mamsch - Thu Nov 05 04:24:05 EST 2009
Hah! I found one:
void bringModuleToFront (Module m) {
current = m // may not be needed
load (moduleVersion m, true)
}
Great! |
Re: "bringToFront" maximized window Mathias Mamsch - Thu Nov 05 04:24:05 EST 2009
Hah! I found one:
void bringModuleToFront (Module m) {
current = m // may not be needed
load (moduleVersion m, true)
}
Thus, you could add the "load(false)" commnand after your original "read" or "edit" command, and then subsequent "bringToFront" commands will work. That's not too useful but I do find it curious.
|
Re: "bringToFront" maximized window llandale - Tue Mar 15 09:24:59 EDT 2011
load (..., true) and load(..., false) make no difference for me with this code with a current Module in maximized state. In both cases they are returned to normal size. Regards, Mathias Module m = current load (moduleVersion m, false) bringToFront m
Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS
|